Welcome![Sign In][Sign Up]
Location:
Search - lexical analyzer

Search list

[ELanguageLexical-analyzer-(scanner)

Description: 词法分析程序(扫描器)的设计-编译原理实验-Lexical analyzer (scanner) of the design- build principle experiment
Platform: | Size: 178176 | Author: 浮云 | Hits:

[ELanguageCompiler-theory-lexical-analyzer

Description: 编译原理词法分析器,内含要求、内容、源代码、测试结果,希望能过各位大侠的法眼-Compiler theory lexical analyzer, containing requirements, content, source code, test results, hoping to have you heroes of discernment
Platform: | Size: 120832 | Author: li | Hits:

[Delphi VCLlexical-analyzer

Description: Delphi做的用于分析Pascal语言的词法分析器-Delphi Pascal language for the analysis to do the lexical analyzer
Platform: | Size: 699392 | Author: 刘敬贤 | Hits:

[ELanguageLexical-analyzer

Description: 简单的词法分析器 1. 一个读单词过程,从输入的源程序中,识别出各个具有独立意义的单词,即基本保留字、标识符、常数、运算符、分隔符五大类。 2.依次输出各个单词的内部编码及单词符号的自身值。 3.遇到错误时显示“无法识别的单词”,然后跳过错误部分继续显示 -Simple lexical analyzer 1. A process of reading words from the input source program, identify the meaning of each word independent, that is basically reserved words, identifiers, constants, operators, delimiters five categories. 2. Followed by the output of each internal code word and the word symbol itself value. 3. Encountered an error " can not recognize the word" , then skip the error part of the continued display
Platform: | Size: 1091584 | Author: xiao | Hits:

[ELanguagelexical-analyzer

Description: 对给定的程序通过词法分析器能够识别一个个单词符号,并以二元式(单词种别码,单词符号的属性值)显示。而本程序则是通过对给定路径的文件的分析后以单词符号和文字提示显示。-The procedure given by the lexical analyzer to recognize one word symbols, and binary type (other types of code word, the word symbols of attribute values) shows. And this procedure is given by the path of the file analysis in order to display the word symbol and text prompts.
Platform: | Size: 9216 | Author: | Hits:

[ELanguagelexical-analyzer

Description: 编译原理,词法分析器,包含实验报告和完整代码,vc++编的可视化程序-Compiler theory, lexical analyzer, and a complete report contains experimental code, vc++ code visualization program
Platform: | Size: 15864832 | Author: 雷滋和 | Hits:

[ELanguagelexical-analyzer

Description: 编译原理,用C语言和lex两种方法实现词法分析,并包含成功测试案例,与失败测试用例以及实验报告-lexical analyzer
Platform: | Size: 112640 | Author: 猪兔兔 | Hits:

[Other resourceAutomatic-lexical-analyzer

Description: 编译原理中有关自动词法分析程序生成器LEX的实现。-Automatic lexical analyzer generator LEX implementation
Platform: | Size: 268288 | Author: 钟邮 | Hits:

[Other resourceC-Prepared-Lexical-Analyzer

Description: 一个简单但很实用的词法分析器,用 c 编写,可以作为编译原理的实验报告源代码-A useful C Prepared Lexical Analyzer , developed with c language. Very practical, and can be used as a reference experiment report
Platform: | Size: 1024 | Author: 吕华荣 | Hits:

[Other resourceLexical-analyzer

Description: 我的编译作业,词法分析器,本程序完成词法分析的各项检错-My compilations, lexical analyzer, the process is complete lexical analysis of the error detection
Platform: | Size: 3072 | Author: 高国峰 | Hits:

[ELanguageLexical-analyzer

Description: 设计各个单词的状态装换图,并为不同的单词设计种别码。将词法分析器设计成供语法分析器调用的子程序。-Each word with the state of the design change figure, and for different words design codes will be kind lexical analyzer design into the parser calls for grammar subroutine
Platform: | Size: 157696 | Author: 宋志伟 | Hits:

[ELanguageLexical-analyzer-code

Description: 词法分析器代码,用的JAVA语言,比较简单,可以作为课件演示-Lexical analyzer code, with JAVA language, is simpler, can be used as a courseware demonstration
Platform: | Size: 1024 | Author: 刘贵鹏 | Hits:

[Other resourceLexical-analyzer

Description: c++写的词法分析器,编译原理肯定会用到,上传上,大家看看哈-c++ to write the lexical analyzer, compiler theory will certainly be used, upload, and we look ha
Platform: | Size: 3072 | Author: 281194684 | Hits:

[ELanguageLexical-analyzer

Description: 编译原理中的词法分析器,利用Visual C++6.0实现-Compiling principle of lexical analyzer, use of Visual C++ 6.0 realized
Platform: | Size: 1118208 | Author: 张三 | Hits:

[Other resourcelexical-analyzer

Description: c++语言编写的词法分析器,编译原理课程作业。-c++ language lexical analyzer, compiler theory course work.
Platform: | Size: 722944 | Author: kaka | Hits:

[ELanguagelexical-analyzer

Description: 通过设计、编制、调试一个具体的词法分析程序,加深对词法分析原理的理解,并掌握在对程序设计语言源程序进行扫描过程中将其分解为各类单词的词法分析方法 输入:字符串。 输出:二元式(种别编码,单词自身)构成的序列。 举例: 输入:a=$ # 输出:(6,a) (12,=) FOUND ERROR (13, ) -The design, development, debugging a specific lexical analyzer, and deepen their understanding of the principles of lexical analysis, and mastery of the scanning process will be broken down into various types of word lexical analysis methods of input: string in the right programming language source code. Output: binary type (Do not encoded word itself) constitute a sequence. Example: Input: a = $ # output: (a) the (12, =) FOUND ERROR (13 )
Platform: | Size: 465920 | Author: 张映生 | Hits:

[ELanguagelexical-analyzer-program

Description: 编译原理词法分析器程序,利用词法分析自动构造工具LEX构造一个识别C语言的词法分析程序-Compiler theory lexical analyzer program, the use of the lexical analysis of the automatic construction tools LEX to construct a lexical analysis to identify the C language program
Platform: | Size: 229376 | Author: 辛敏 | Hits:

[ELanguageLexical-analyzer

Description: 这是一个编译原理课上要求的词法分析器,代码简单,容易实现-Lexical analyzer
Platform: | Size: 3072 | Author: wangli | Hits:

[ELanguageC-language-lexical-analyzer

Description: 编译原理实验 词法分析器 C++代码编写,基于DEVC-Compiler principle experiment lexical analyzer
Platform: | Size: 2048 | Author: biancheng | Hits:

[ELanguagelexical-analyzer

Description: 编译器中的词法分析程序。是编译器工作的第一个环节。-lexical analyzer of Compiler. First part in a compiler.
Platform: | Size: 3072 | Author: 孙璐 | Hits:
« 1 2 34 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net